home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1999 January / PC Plus Super CD No55a (PCP-147A-1-99) (Disc 1) (1998).iso / full / cbuilder / SAMS / SAMPLES / CHAP06 / SECOND.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-12  |  804 b   |  22 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef SecondH
  3. #define SecondH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TSecondForm : public TForm
  11. {
  12. __published:    // IDE-managed Components 
  13.     TLabel *Label1;
  14. private:        // User declarations
  15. public:         // User declarations
  16.     virtual __fastcall TSecondForm(TComponent* Owner);
  17. };
  18. //---------------------------------------------------------------------------
  19. extern TSecondForm *SecondForm;
  20. //---------------------------------------------------------------------------
  21. #endif
  22.